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 Balachander,
Have you installed the latest Intersoft WebUI Studio?
In the latest Intersoft WebUI Studio (2011 R1), there is Intersoft ClientUI MVVM Data Application template with DevForce which is have a different layout but have a same concept with Business Application. So you just change it in to your wanted layout.
Please let me know if you still have any question.
Regards,
Riendy
Hi Alastair,
Did you use navigate function to pass extra data ?
I have replicated your issue (using navigate function). I already forwarded this issue to our development team to be investigated further. I'll tell you soon when I get the update from them.
Hi Kenneth,
Sorry for the latest reply.
I still can't replicate your issue yet.
Could you please attach a simple runable sample that replicated your issue, so I can try to solve you issue?
Hi Matt,
Would you please tell me what version of WebDialogBox that you use?
I changed ASP:Button code behind, so it use FullPostBack
fpb.ClientAction.InvokeScript("ShowDialogBox();");
to
dlgBox.ShowOnLoad = true;
Attached is a video that show you the differences using WebButton(FlyPostBack) and ASP:Button(FullPostBack) to open WebDialogBox.
If WebButton clicked, WebDialogBox will be opened but user control could not added.
But If you click ASP:Button, it will open WebDialogBox with user control.
I could not replicate your issue here. Would you tell me what is not show, WebDialogBox, controls or both of them?
But I have attach some sample. could you please tell me what is my sample just like your scenario or not ?
Regards
Hello,
This error occurs when WebGrid could not bind the data. There are some mistakes when bind the data :
1. Select query to bind data into WebGrid got an error.
You can check Execute query on query builder. Please follow this steps to checking :
2. Display structure on WebGrid did not match with data in AccessDataControl1
You makes 8 column in WebGrid which is doesn't exist in AccessDataControl1. There are Quantity, Discount, TotalMoney, and OrderID in your display structure.
Because of this mistaken, there is no database that bound, so WebGrid has return null and cannot use any FlyPostBack request.
I have modified your sample and using AccessDataSource2. you can check on my attachment.
Please do not hestitate to ask if you still have a question.
It should be no problem with your current environment. Please follow the step by step in below:
If you don't mind, please create a simple project which using ISGetObject().
FYI, ISGetObject() method is defined to get intersoft control object.
So, It's a little weird, if this method could not be used. Also, Can I know the previous issue about overlapping menu? Has it solved?
Hi Michela,
If you want to get the id of the resources that user selected in day SplitViewMode in the client event "WebSchedulerOnEditingFormShow", you can try snippet code bellow :
function WebScheduler1_OnEditingFormShow(controlId, action, eventView, eventType, newType) { var WebScheduler1 = ISGetObject(controlId); if (eventView.IsRecurringEvent()) Alert("ResourceID : " + eventView.OriginalRecurringObject.ResourceID); else Alert("ResourceID : " + eventView.OriginalObject.ResourceID); return true; }
Please let me know if it works fine after this snippet code applied.
Hope this helps
This error usually happens because WebGrid get a timeout when connecting to server. The other possibilities are because useing unbound. In unbound mode, this error will show everytime you use FlyPostBack request such as sorting, refresh, accept changes, etc.
Could you please let me know how do you bind your WebGrid and how do you handle the update process?
Hello Robert,
To get a rows that expanded by user, I think you get little bit missing. you should use ChildExpanded. You can try this code :
<script type="text/javascript"> function OnClientCellDblClick(id, args) { var grid = ISGetObject(id); var rt = grid.RootTable; var rc = rt.GetRowsCount(); var noneExpanded = true; for (i = 0; i < rc; i++) { var r = rt.GetRow(i); if (r.ChildExpanded == true) { alert('Row ' + i + ' is expanded'); noneExpanded = false; } } if (noneExpanded==true) alert('No rows are expanded'); } function OnClientGroupExpand(id) { alert('group expanded'); }
Would you like to tell me that I am right or not ?
Hope this helps.
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