iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi Vantu,
I also created WebParts project that contains WebGrid and using Northwind.mdb. Unfortunately, I could not replicate your issue on my end.
Attached is my simple sample. Am I missing something here ?
Riendy
I tried a simple sample but I could not replicate it.
Here I attached my simple sample using Northwind.mdb. Do I need any setting to replicate the issue ? Or is it possible for you ?
Regards,
Hello Francis,
To correct your problem, you should open web.config on your website folder.
Then delete the following path :
1. ISChart.axd
2. WebFileUploaderHttpHandler.axd
3. ISScheduler.axd
4. ISCoverFlow.axd
5. WebFilerUploaderHttpModule
Or you can see tag bellow :
<add path="ISChart.axd" verb="GET" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" validate="true" /> <add path="WebFileUploaderHttpHandler.axd" verb="GET" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" /> <add path="ISScheduler.axd" verb="GET" type="ISNet.WebUI.WebScheduler.WebSchedulerRequestHandler, ISNet.WebUI.WebScheduler" validate="true" /> <add path="ISCoverFlow.axd" verb="GET" type="ISNet.WebUI.Silverlight.WebAqua.WebCoverFlowRequestHandler, ISNet.WebUI.Silverlight.WebAqua" validate="true" /> <add name="WebFileUploaderHttpModule" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor" />
Hope this helps.
Hi Tariq,
could you please describe more details about your scenario? I tried to use your current code but unable to understand your current scenario. Some of your codes used Telerik, which I don't have any of Telerik control. Does your current scenario have some issue when closing a WebDesktopWindow, or WebDialogBox? It would be better if you could provide us a simple runable sample that can describe the scenario more clearly.
regards,
Hello Kenneth,
I tried to make a simple sample based on your issue but I couldn't replicate it.
Attached is my simple sample, Is it possible for you to replicate the issue in my sample?
Could you please let me know your current environment ?
Hi,
I have forwarded this issue to our development team to be investigated further.
I will tell you soon when I get the update from them.
Hello Sachin,
To move column and its value from one position to another position you can change datamember and caption. Or you can get the ColumnCollection first, then remove and insert to the desired position.
You can see the snippet code bellow
protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e)
{
WebGrid1.RetrieveStructure();
// exchange column index 5 to column index 0
string Member;
string caption;
// exchange DataMember column index 5 to column index 0
Member = WebGrid1.RootTable.Columns[5].DataMember;
WebGrid1.RootTable.Columns[5].DataMember = WebGrid1.RootTable.Columns[0].DataMember;
WebGrid1.RootTable.Columns[0].DataMember = Member;
// exchange Caption column index 5 to column index 0
caption = WebGrid1.RootTable.Columns[5].Caption;
WebGrid1.RootTable.Columns[5].Caption = WebGrid1.RootTable.Columns[0].Caption;
WebGrid1.RootTable.Columns[0].Caption = caption;
}
-----------------------------------------------------------------------------------------------
WebGridColumnCollection columnCollection = WebGrid1.RootTable.Columns;
// move ContactName column to the 1st position
WebGridColumn contactName = columnCollection.GetNamedItem("ContactName");
columnCollection.Remove(contactName);
columnCollection.Insert(0, contactName); // 0 is an index
Hello Durga,
Unfortunately WebAcordion does not support percent.
So far, our developer are not planning to support percent for WebAccordion yet.
Hello Scott,
I've tested your sample page in chrome and it is running well.
May I know your Chrome version and webgrid 7 build version ?
I used chrome 10.0.648.205
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname