Results 1 to 6 of 6

Thread: Tabular Data Control

  1. #1
    Join Date
    Nov 2009
    Posts
    580

    Tabular Data Control

    Hello, I am beginner in the Javascript and now wanted to know about the Tabular Data Control. If anyone provide me some details about it in simple words then I will be thankful to him. Please, if anyone is having knowledge in Javascript then please give me information about the Tabular Data Control.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Re: Tabular Data Control

    Tabular Data Control is used to show the delimited text files in the format of table or row type in HTML page. It is having following properties and methods:

    Properties:
    1. AppendData
    2. CharSet
    3. DataURL
    4. EscapeChar
    5. Filter
    6. Language
    7. RowDelim
    8. Sort
    9. TextQualifier
    10. UseHeader

    Methods:
    1. CanConvertData
    2. ConvertData
    3. Reset

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Re: Tabular Data Control

    Tabular Data Control is an ActiveX control provided by the Microsoft. There is no requirement to install it on your computer by yourself as it comes along with your Internet Explorer if you are using Internet explorer which is having more than version 4. It can give you ability to show, sort and access the ASCII information which is saved on the server. For making more use of Tabular Data Control in the client side Javascript is used. If you are a Netscape user then you will require a plug-in for the same function to work.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Tabular Data Control

    Tabular Data Control is a Microsoft ActiveX control and it is mostly provided by the Internet Explorer if you have Internet explorer which is having more than 4 version. From this you can able to get the data from the text file int the html file. If you have less size data then this type of control is very helpful to you. But as it is a Activex control this can be supported by your internet explorer only, for other use you would need to have the plugin.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Re: Tabular Data Control

    If you want to implement the Tabular Data Control then you would need to have the following coding in your application program:
    Code:
    <OBJECT ID="SomeID" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83">
    ...
    ...
    ...
    </OBJECT>
    There are total 7 parameters available in this activex data control but most of time you would use the following parameters:
    * DataURL
    * UseHeader
    * TextQualifier
    * FieldDelim

  6. #6
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Tabular Data Control

    I am giving you the implementation of the Tabular Data Control which can be as follows:
    Code:
    <OBJECT ID="SomeID" CLASSID="CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83">
    <PARAM NAME="DataURL" VALUE="data.txt">
    <PARAM NAME="UseHeader" VALUE="TRUE">
    <PARAM NAME="TextQualifier" VALUE="~">
    <PARAM NAME="FieldDelim" VALUE="|"<
    </OBJECT>

Similar Threads

  1. Replies: 7
    Last Post: 12-06-2013, 10:16 AM
  2. How to get a Java Program output in Tabular format
    By Falgu in forum Software Development
    Replies: 3
    Last Post: 18-07-2012, 04:15 PM
  3. Replies: 3
    Last Post: 24-01-2012, 11:14 PM
  4. Symantec DRM control into data protection
    By austin26 in forum Networking & Security
    Replies: 3
    Last Post: 28-10-2009, 08:08 AM
  5. Convert tabular data to a matrix in Excel
    By Rookieinexcel in forum Windows Software
    Replies: 2
    Last Post: 23-04-2009, 10:19 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,573,642.31665 seconds with 17 queries