User Profile & Activity

Hans Kristian Member
Page
of 69

Hello,

Thank you for your sample.

I have review on your sample and I can reproduce your issue on my end as well.

It seems the issue appear due to you use incorrect javascript code to set value. Please try to modify your javascript code from:

function setValue() {
            var v_price = ISGetObject("wi_price");
            v_price.SetValueData(123.00, true);
}

To:

function setValue() {
            var v_price = ISGetObject("wi_price");
            v_price.SetValueData("123");
}

Hope this helps.

Regards,

Hans.

Posted: January 22, 2013 6:25 AM

Hello,

After we investigate the issue, this is WebExplorerPane default behavior/style indeed.

 

By default the font style is using en-US culture & the font size 8.25pt.

If you use default style value and change the culture, but the customize culture doesn’t compatible with en-US culture, it will make the font size became bigger.

The solution is you should customize the value of font size (from WebExplorerPane property).

For example, set the font size to 8pt or 9pt.



I attach the WebExplorer sample that using customize font size (8pt).

Please have review on my sample and let me know your response.

Thank you.

Regards,

Hans.

Posted: January 21, 2013 2:30 AM

Hello,

Thank you for your reply.

I also can replicate your issue, like in UXRibbonApplicationMenu-2.png

What I mean with the second issue is the width of the application window.

Yes, that is default behavior from application window. The max width & height of the application window is same with the width & height of your screen.

This behavior is like another window in Windows OS.

Thank you.

Regards,

Hans.

Posted: January 20, 2013 9:02 PM

Hello,

I apologize for the inconvenience.

For the UXRibbonApplicationMenu issue, I also can replicate this issue on my end and I will forward this issue to the developer team.

For the second issue, could you provide me more detail information about the issue?

Or could you provide me the step by step how to reproduce the issue?

Please forgive me for lack of understanding about the reported problem.

Thank you.

Regards,

Hans.

Hello,

I made a simple WebDesktop sample with 2 iFrame windows.

The first window contains WebInput and WebButton and the second window contains WebPaneManager.

In my sample, you could set WebPaneManager’ caption text in second from the first window.

Please kindly have review on my sample and let me know whether it helps or not.

Thank you.

Regards,

Hans.

Posted: January 15, 2013 1:35 AM

Hello,

Yes it is possible. Perhaps you could use GetChildRows() method to know whether the row have a child table or not.

Here’s the snippet example code how to use GetChildRows() method:

<script language="javascript" type="text/javascript">
    function expandChildRow() {
        var grid = ISGetObject("WebGrid1");
        var selObj = grid.GetSelectedObject();
            
        if (selObj == null) {
            alert("Please select a row");
            return;
        }
        else {
            var row = selObj.GetRowObject();
            if (!row.ChildExpanded) {
                    //Expand the child row                   
                    row.ExpandChildRow(true);
                    //Get child rows
                    var childRows = row.GetChildRows();
                        
                    //If the row have child rows
                    if (childRows)
                        alert("This row have child rows!");
                    //If the row doesn't have child rows
                    else
                        alert("This row doesn't have any child rows!");
            }
            else
                alert("Row already expanded!");
        }
    }
</script>

Hope this helps.

 

Thank you.

Regards,

Hans.

Hello,

Basically, the auto complete feature works with the first column only.

If you want to search another field beside the first column, you could use AdditionalSearchFields feature.

For further information about AdditionalSearchFields feature, you could see in WebCombo documentation or see in the AdditionalSearchField.aspx WebCombo sample.

(start > All Programs > Intersoft WebUI Studio 2012 R2 > WebUI Studio for ASP.NET > WebCombo 6 > C# Sample. The physical location of the file is: "%ProgramFiles%\Intersoft Solutions\Intersoft WebUI Studio 2012 R2\Samples\For ASP.NET\ISNet.WebUI.Samples\cs\WebCombo\AdditionalSearchField.aspx".)

Hope this helps.

 

Thank you.

Regards,

Hans.

Hello,

I have made a simple WebGrid sample.

I bind WebGrid to access data source control (Northwind.mdb database and Products table).

On Discontinued column, I set the EditType and ColumnType property to CheckBox.

Then I tried to edit and add new row, but unfortunately it works fine on my end.

Please have review on my sample and let me know if there is configuration that I missed on my sample.

Thank you.

Regards,

Hans.

Posted: January 7, 2013 6:13 AM

Hello,

Yes, it is.

The line of code can’t be applied in timeline view.

Thank you.

Regards,

Hans.

Posted: January 7, 2013 6:09 AM

Hello,

1) The GetPagedBugs (if you see ClientBiding_Paging.aspx sample) is being called twice indeed.

This happen due to the sample is using pagination feature. First, it will select all data then it will select again for the paging.

2) If you are using Intersoft sample, it should use IHierarchicalList indeed, because data source collection of the sample is using hierarchical collection.

If you don’t the hierarchical collection, you should your own data source collection.

Thank you.

Regards,

Hans.

All times are GMT -5. The time now is 3:48 PM.
Previous Next