Hi,
I was testing the components on my ipad but drag and drop functionality didn't work ... the same thing occurs with slider, resizing extender, drag and drop tree, drop down list in html editor, expand columns in a webdatagrid .. is there any support for that? i'm interested purchaising this product but i need ipad support.
Thanks
Hi patico,
We now officially support the iPad with the Aikido offerings. The grids, menu, and tree were specifically altered to give as close to a desktop experience as possible for 11.2. If you find specific functionality lacking, it can be investigated to be added as a bug fix. In the 11.2 RTM, for example, the resizing extender did not work. However, it was addressed in a subsequent ServiceRelese. Bug fixes have gone into the WebImageViewer and WebSchedule as well. I'm not sure what you mean by expanding columns in WebDataGrid. Is the column resizing? I believe it may unofficially work right now, however, you need to position your thumb exactly between two column headers; it still works the same as a mouse. The drag and drop framework still has some problems it seems. Now that it has been brought to our attention, it can be investigated and a fix pursued.
regards,David Young
Hello,
We are using WebDataGrid with DropDownProviders but these do not work on iPad. Is there a way to configure the grid so that these will work on the iPad?
Thanks,
Mark
<ig:WebDataGrid ID="wdgQuotes" runat="server" Height="95%" Width="100%" StyleSetName="<%$ appSettings:igStyleSetName%>" Font-Size="X-Small" ItemCssClass="itemCSSclass" AutoGenerateColumns="False" EnableRelativeLayout="True" OnRowSelectionChanged="wdgQuotes_RowSelectionChanged" OnColumnSorted="wdgQuotes_ColumnSorted" EnableAjax="false" OnInitializeRow="wdgQuotes_InitializeRow" OnDataFiltered="wdgQuotes_DataFiltered" OnPageIndexChanged="wdgQuotes_PageIndexChanged" OnRowUpdated="wdgQuotes_RowUpdated" DataKeyFields="QuoteID"> <Behaviors> <ig:Selection CellClickAction="Row" RowSelectType="Single"> <AutoPostBackFlags RowSelectionChanged="true" /> </ig:Selection> <ig:Paging PagerMode="NumericFirstLast" PageSize="5" QuickPages="2" PagerCssClass="wdgPagerStyle" CurrentPageLinkCssClass="wdgPagerStyle"> </ig:Paging> <ig:Filtering Alignment="Top" Visibility="Visible" Enabled="true" AnimationEnabled="true" /> <ig:Sorting Enabled="true" SortingMode="Single" /> <ig:EditingCore> <EditingClientEvents CellValueChanged="wdgQuotes_Editing_CellValueChanged" /> <Behaviors> <ig:CellEditing> <CellEditingClientEvents EnteringEditMode="wdgQuotes_Editing_CheckCell" /> <ColumnSettings> <ig:EditingColumnSetting ColumnKey="SubmittedToCustomer" EditorID="ddpActive" /> <ig:EditingColumnSetting ColumnKey="QuoteName" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="QuoteOwnerFullName" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="CustomerName" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="MachineDescription" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="QuoteDate" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="SOCCreated" ReadOnly="true" /> <ig:EditingColumnSetting ColumnKey="TermsName" EditorID="ddpTerms" /> </ColumnSettings> </ig:CellEditing> </Behaviors> </ig:EditingCore> </Behaviors> <EditorProviders> <ig:DropDownProvider ID="ddpActive"> <EditorControl ID="ecActive" runat="server" DropDownContainerWidth="100px" DropDownContainerHeight="70px" EnableAnimations="true" EnableDropDownAsChild="false" EnableCustomValues="false" StyleSetName="<%$ appSettings:igStyleSetName %>" ToolTip="Press Enter to save"> <Items> <ig:DropDownItem Text="Yes" /> <ig:DropDownItem Text="No" /> </Items> </EditorControl> </ig:DropDownProvider> <ig:DropDownProvider ID="ddpTerms"> <EditorControl ID="ecTerms" runat="server" EnableAnimations="true" EnableDropDownAsChild="false" EnableCustomValues="false" DataSourceID="odsTerms" ToolTip="Press Enter to save" ValueField="TermsFileName" TextField="TermsName" StyleSetName="<%$ appSettings:igStyleSetName %>"> </EditorControl> </ig:DropDownProvider> </EditorProviders> <Columns> <ig:BoundDataField DataFieldName="SubmittedToCustomer" Key="SubmittedToCustomer" Width="7%"> <Header Text="Submitted" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="QuoteName" Key="QuoteName"> <Header Text="Quote Name" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="QuoteOwnerFullName" Key="QuoteOwnerFullName"> <Header Text="Quote Owner" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="CustomerName" Key="CustomerName"> <Header Text="Customer Name" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="MachineDescription" Key="MachineDescription"> <Header Text="Machine Name" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="QuoteDate" Key="QuoteDate"> <Header Text="Quote Date" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundDataField DataFieldName="QuoteCreatorFullName" Key="QuoteCreatorFullName"> <Header Text="Prepared By" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> <ig:BoundCheckBoxField DataFieldName="SOCCreated" Key="SOCCreated" CssClass="wdgCheckBoxColumn" Width="5%"> <Header Text="SOC" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundCheckBoxField> <ig:BoundDataField DataFieldName="TermsName" Key="TermsName"> <Header Text="Terms" CssClass="wdgiQuoteHeaderStyle" Tooltip="Click to sort" /> </ig:BoundDataField> </Columns> </ig:WebDataGrid>