User Profile & Activity

leo Chandra Member
Page
of 14

Hi Shresta,

We could make the WebCalendar to overflow out of the WebDialogBox, but I won't recommend it. It will be much more cleaner by wrapping the WebCalendar inside a div that will let you scroll for the overflowed calendar item. As a reference, I have attached a simple sample as a reference. Please have it evaluated on your end by adding it to WebEssentials sample.

Best Regards,
Leo

Posted: April 2, 2015 1:32 AM

Hi John,

Glad that it worked for you. For your information, currently we only support lowercase "and" for Between filter type, so you must use lowercase "and" to make it work.

Best Regards,
Leo

Hi Jimmy,

I have tried VisibilityBinding on section for Android, iOS and WinPhone platform. And the result was it work well on iOS and Android. It seem there is no support for WinPhone. For an error you are facing when using VisibilityBinding on section, did you by chance bind using Model source? For your information, currently we only support VisibilityBinding on section with Model source for iOS platform.

I have submit this two feature as a feature request. For Android, I have submit it under "CROS-795", And for winPhone was under "CROS-794".

Regarding EnabledBinding on section, it was not supported on any platform. If you need this functionality in your scenario, I will help you to submit this as a feature request.

Best Regards,
Leo

Posted: March 30, 2015 5:04 AM

Hi John,

I have made a simple sample in order to reproduce your issue. Unfortunately I could not reproduce your issue. I could add between filter programatically.

I have attach a simple working sample as your reference. Please have it evaluated on your end by adding it to webgrid sample included in installation folder.

Best Regards,
Leo

Posted: March 26, 2015 7:46 AM

Hi James,

Please expect a fix for this issue to be ready before the end of April.

Best Regards,
Leo

Posted: March 25, 2015 8:19 AM

Hi Rupesh,

You could achive this by applying an additional filter to WebCombo based on related column when you enter edit mode. As an example, you could run the following javascript as WebGrid OnEnterEditMode client side event handler:

WebGrid_OnEnterEditMode = function (controlId, tblName, editObject){
    var cell = editObject.ToCellObject();
    if (cell.Name == "State")
    {
        if (editObject.type == "WebComboNET")
        {
            var pincode = cell.Row.GetCells().GetNamedItem("Pincode").Value;
            var webCombo = editObject.element;
            var tempValue = webCombo.Value;
            var tempText = webCombo.Text;
            if(pincode == "")
                webCombo.ClearAdditionalFilters();
            else
                webCombo.SetAdditionalFilters("[State_Pincode] = '" + pincode+ "'");
            webCombo.Value = tempValue;
            webCombo.SetText(tempText);
        }
    }
}

That should do it. Please note that setting the additional filter for the same column as DisplayMember might cause an unwanted user experience.


Best Regards,
Leo

Posted: March 25, 2015 4:25 AM

Hi James,

Thanks for your information. I have report this to WebGrid development team under 'ASPNET-157'. I will get back at you if there is an update.

Regards,
Leo

Hi Leo Hong,

Your welcome.

Best Regards,
Leo Chandra

Posted: March 24, 2015 10:02 AM

Hi James,

I have re-upload the video. Please find the video on attachment.

FYI, The only changes that has been made to your project was the connection string to the database.

Best Regards,
Leo

Hi Leo Hong,

We have update crosslight to support Command binding to UIButton on group header section. Please find the nightly build here. Please note that you need to use Unified API for it to work.

Best Regards,
Leo

All times are GMT -5. The time now is 8:39 AM.
Previous Next