User Profile & Activity

Riendy Setiadi Member
riendy@intersoftpt.com
Page
of 19

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.


Regards,

Riendy

Posted: May 9, 2011 2:00 AM

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?


Riendy



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.


Please let me know if you still have any question.


Regards,

Riendy


Hi Matt,

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 :

  • Right click on AccessDataSource1 then select Configure Data Source...
  • Then select next twice.
  • Click on button Query Builder... to execute query. (There will show you an error message)

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.

Riendy

Posted: May 5, 2011 3:28 AM

Hi Kenneth,

It should be no problem with your current environment. Please follow the step by step in below:

  1. Close all opens Visual Studio.
  2. Delete all files and folders in C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files.
  3. Open command prompt then type iisreset.

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?

 

Riendy

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

Regards,

Riendy

Hello,

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.

Riendy

All times are GMT -5. The time now is 2:53 AM.
Previous Next