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
Staffan,
Okay, it seems like initializing the column property during Export event is too late. I guess that's because the data source is already populated and bound in that event.
Try to set the column property in InitializePostBack event. See the code below.
void WebGrid1_InitializePostBack(object sender, ISNet.WebUI.WebGrid.PostbackEventArgs e) { if (e.Action == PostBackAction.Export) { WebGrid1.RootTable.Columns.GetNamedItem("AccountGroupText").GroupRowInfoFormat = "[value]" } }
Hope this helps,
James.
Xedem, I don't think the Grid has anything to do with jQuery controls. If you changed the doctype from XHTML to HTML, it could be the cause. Otherwise, please post a simple sample that reproduce the issue.
It's actually possible to show the text during exporting instead of the value. You can set the EnableValueList property of the export's argument to true during Export event.
Here's the sample codes:
protected void Page_Load(object sender, EventArgs e) { WebGrid1.Export += new ISNet.WebUI.WebGrid.ExportEventHandler(WebGrid1_Export); } void WebGrid1_Export(object sender, ISNet.WebUI.WebGrid.ExportEventArgs e) { e.ReportInfo.EnableValueList = true; }
For the group info format, yes, you can customize that one as well in the Export event. Try setting the GroupRowInfoFormatDefault property to "[value]" (without the double quote). The property is available in global level (LayoutSettings), table level and column level, so you can choose which suits you the best.
Hope this helps,James.
Staffan, try to reset all IE settings to default. In Options dialog, go to Advanced tab then click on Reset button.
Xedem, yes, I think the above code is designed only for Response.Redirect.
The Server.Transfer method performs the data transfer directly on server-side without reaching client-side first, and thus there's no way to really support it during AJAX/partial page refresh.
Hi Xedem,
There are two solutions for page redirection in FlyPostBack AJAX request:
<httpModules> <add name="FlyPostBackModule" type="ISNet.WebUI.FlyPostBackModule, ISNet.WebUI"></add> </httpModules>
grid.ClientAction.Navigate(newUrl)
Note: Make sure you add the httpModule definition to the correct node depending on your target IIS version. Eg, IIS 7 requires http handlers and modules to be defined in system.webServer node.
Staffan, if you're updating the assemblies through Intersoft's Update Manager, it should have take care the GAC update and everything.
Have you tried to export the Grid in other computer? That will help to isolate whether the issue is in the client-side installation (eg, Adobe Acrobat Reader issue) or possibly browser setting issue.
Hi Alex,
Yes, that can be done easily by using a simple property set.
Set your image url to the provided DesktopManager.ImagesSettings.OverlayBackground property.
Hi Jim,
I'm pretty sure that WebGrid 7 already supports XHTML doctype, you can give it a try.
Jeff,
Do you have any other components in the page or javascript codes that may cause or override the default behavior of WebGrid's context menu? For instance, some kind of codes that hide all popups in document body level.
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