User Profile & Activity

Julia Wijaya Support
Page
of 24
Posted: June 18, 2010 6:31 AM

Hi Huzefa,


I am apologize for the delay answer, because I have to discuss about the possibility of this feature first. Thank you for your valuable feedback regarding our controls, but, I'm afraid that this feature could not be implemented since our development team are busy with their tight deadline schedule for our next release.

WebGrid have the ability to perform several kinds of Editor for each row in one column. However, currently there is no way for scenario that using different DataType between the column and the editor. For example, if the column's DataType is String, then the editor that you could use are TextBox, MultilineTextbox. Meanwhile, it is not possible to use eg checkbox (Boolean) or Calendar (Datetime) for the editor (please also notes that some editor need to be rendered from the first initialize, eg by put it as default editor). For more detail about this, please kindly check for the attachment of simple sample.

In further chance you need another help, please feel free to ask.


Best regards,

Julia

Hi David,

 

Unfortunately javascript is used inside most of our components (including WebGrid). So to make it works, you will need to enabled the javascript.

 

Best regards,

Julia

Hi Anup,

 

If you want to change the item text in WebGrid's header context menu, you can simply use SetText in OnColumnContextMenu event, as show in the sample code below:

function WebGrid1_OnColumnContextMenu(controlId, col, menu, isGroup, location)
		{
		    var WebGrid1 = ISGetObject(controlId);
		    menu.Items.GetNamedItem("mnuSortAsc").SetText("もし もし");			
			return true;
		}

You will notice that "Sort A to Z" is change to "もし もし".

Hope this could help.

 

Best regards,

Julia

Hi Johnny,

 

In order to filter a non-editable column, you can use this snippet :

 function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) {           

            var WebGrid1 = ISGetObject(controlId);
            if (WebGrid1.GetSelectedObject().GetRowObject().Type == "FilterRow") {
                WebGrid1.GetSelectedObject().ToRowObject().GetCells().GetNamedItem("CustomerID").SetForceNoEdit(false);                
            }
            else {
                WebGrid1.GetSelectedObject().ToRowObject().GetCells().GetNamedItem("CustomerID").SetForceNoEdit(true);
            }
            return true;
        }

with AllowEdit is set to true.

Hope this help.

 

Regards,

Julia

Posted: May 17, 2010 12:48 AM

Hi Maged,

 

I have tested your scenario and I could replicate your issue. However, this issue is not a bug. Since the grid need time to process the data, then when you choose the next data quickly, the grid is already in progress for the first data. Basically the progress itself happened in almost no time, which can be counted as milliseconds. So the second grid will show it as the result.

You might want to see our sample that fit with your scenario. The sample name is SendingCustomRequest.aspx.

Hope this information helps. 

 

Best regards,

Julia

 

Hi Scott,

 

Thank you for the details. I have tested the sample Client_RowsCells.aspx and managed to replicate the issue. I have forwarded the issue to our development team as WI #703. I'm sorry for the inconvenience. I will inform you for any news regarding the issue in this thread.

 

Regards,

Julia

Hi Alex,

 

The checking compatibility of QTP is still in progress. Currently our development team is still focus into our next product that will be releasing soon. I'm apologize for the delay. 

 

Regards,

Julia 

Posted: May 5, 2010 11:21 PM

Hi Johnny,

 

Thank you for your interest with our products. May I know the product that you want to upgrade, is it Premier Edition or ASP.NET ?

Below is the pricelist for renew subscription

- Premier Edition cost $ 999 USD/1 license

- ASP.NET cost $ 799 USD/1 license

 

There should't be any inconvenience when upgrade our product. To use the latest product, it is recommended to uninstall the product first. It can be done easily by doing the following step:

  1. Remove all your license before uninstallation by using LicenseManager
  2. Uninstalling the old product
  3. Install for new product
  4. Enter your DesignTime license key

Or in case you want to use multiple version, this article would be very helful for you :

http://www.intersoftpt.com/Build/SidebysideInstallation

Please let us know if you need any helps.

 

Regards,

Julia

 

 

Hi Yousif,

 

May I know your setting for PagingMode property? If you set it to ClassicPaging, you need to set PagingExportMode to ExportAllData. But if you set it to VirtualPage with default VirtualLoadMode, all record will be exported automatically.

Please notes that if you set VirtualLoadMode to custom the export data that will be exported is depend on number set in VirtualPageSize.

 

Regards,

Julia

Posted: May 4, 2010 3:50 AM

Hi Hamdy,

 

Thank you for the sample.

Since you are going to close the window from an IFrame button, it is recommended to access the window parent first. Therefore, you could use the following code to modified the code in PageDialogBox sample: 

function Button2_onclick() {            
            var wnd = window.parent.ISGetObject("WebDesktopManager1");
            var activeWnd = wnd.GetActiveWindow();            
            alert(activeWnd.Name + " is closed");
            activeWnd.Close();
        }

I hope this could helps.

 

Regards,

Julia

All times are GMT -5. The time now is 6:27 PM.
Previous Next