by Intersoft Solutions Corporation - Product Type: Component / ASP.NET WebForms / ASP.NET AJAX (ATLAS) / .NET Class / 100% Managed Code / AJAX
I am evaluating the WebGrid for possible purchasing. While my earlier post is till unanswered, I am already facing lots of problems with other features I have worked on.
1)PreviewRowDisplay feature in WebGrid.NET : As you have written in your tutorials, You can enable PreviewRow feature by access to WebGrid.NET Designer - LayoutSettings - PreviewRowVisible. But, in the properties window, I am not able to find this property. So, to make it work i had to enter the source code and specify this property. Why its ntoshowing up in the properties window?
Secondly, if I am changing the lengths of the fields in the table in my Sql server, and changing the data accordingly, its showing my irrelvant errors. Like, possible null values, or foreign key constraints violation. Though this features seems to work fine, if my preview fields has length of varchar(50). I am all at sea to figure it up, when the length and the data is increased.
2)GroupBox: Again, even if I am setting the properties as mentioned in the tutorial,
This feature can be enabled by setting the following property in LayoutSettings:
AllowGrouping : Yes
GroupByBoxVisible : True (optional)
Even after setting this , source is not updated with the setting, GroupByBoxVisible : True and hence I can't see the group box. So, again I had to manually enter this in the source and it starts working. There seems to be properties availability in the properties window and its automatic updation in the source.
Secondly, its not working for 2 of my initial columns, if I am drag it to the group box. Though it works after this.
Could you please respond and let me know what could be the reasons behind this?
Though I am still evaluating the other features, and I have got only couple of days left for taking go/no-go decision, could you please respond at the earliest to this post and my previous post (sent yesterday). In absence of your answer, we will have to possibly drop this solution in our application.
Please let me know, in case you would want to have any details from me.
Regards,
Vishal
Reply
Hi,
In WebGrid, we can export data to number of formats (.xls,.pdf,.xml etc), Can we also import data from an excel file. If yes, what it takes? For e.g. the data elements in the excel should correspond to existing columns in the grid etc.
Looking forward to your early and detailed response.
Thanks & Regards,
Vishal
Reply
Hi,
I have some troubles to implement the fixed column using infragistic webgrid.
Here is the scenario,
I have 50 rows in the grid and the grid can show 20 only at a time. When I edit it, it will scroll down to next row after I press tab key.
It works perfect before I fixed the first three columns in the grid.
After the columns fixed, the grid will not scroll when it is sitting in the last row(20th) in the grid after I press tab key.
Anyone can help me on this?
Thanks
--Leo
Reply
Is thier a service pack for WebGrid.NET Ent V3.5.000? Can somebody send me the link please.
thanks.
Reply
How to add checklistbox cotrol and textbox control in single webgrid column
Reply
Hi All,
I am interested in binding Xml file to WebGrid. There is an example on intersoft web site that refers to Customer.xml but it doesn't disclose the schema of this file. Anybody has ever done this?
Anand
Reply
RE: WebGrid.NET Enterprise hadi 12-May-2004 07:13:51
Hi Anand,
Try these codes at InitializeDataSource event :
xDoc = new XmlDataDocument();
xDoc.DataSet.ReadXmlSchema(Server.MapPath("dsCiti.xml"));
xDoc.Load(Server.MapPath("MyXML.xml"));
e.DataSource = xDoc.DataSet;
The XML schema (dsCiti.xml) is retrieved through ReadXMLSchema method. For future correspondence, you can try to send emails to technical@intersoftpt.com
Regards,
hadi
Reply
What is the procedure in VB to get a Group Totals
Reply