﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebCombo</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><description /><generator>http://www.intersoftpt.com</generator><language>en</language><copyright>Copyright 2000 - 2009 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Dynamically created WebCombo and the ISControl_InitializeAtlas error</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Mon, 29 Apr 2013 04:45:15 GMT</pubDate><dc:creator>ArtAmurao</dc:creator><category>WebCombo</category><category>javascript</category><category>error</category><category>UpdatePanel</category><category>AsyncPostback</category><category>ISControl_InitializeAtlas</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;We are encountering an error on our page with a WebCombo. Our WebCombo is being generated in the code, and is being added to a control under an UpdatePanel. If the UpdatePanel uses a PostbackTrigger, it works fine. However, if we use an AsyncPostbackTrigger, we are receiving the error, "The value of the property 'ISControl_InitializeAtlas' is null or undefined, not a Function object" and the WebCombo is not rendered properly. Please see attached sample page.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I can confirm that the runtime licenses are supplied correctly on our web.config and that the ISNet.dll, ISNet.WebUI.dll, ISNet.WebUI.Resources.dll are on our website's bin folder, as indicated on some of the responses to similar problems I've found on this forum. If you notice, I also tried to add the &amp;lt;system.webServer /&amp;gt; tags on our web.config. All these did not resolve the error we're encountering.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;This is happening on my local machine (Windows 7, VS2010) and on our app server (Windows Server 2008, IIS7).&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;We need to use the AsyncPostbackTrigger in this page as we have other controls that would be affected. Please help!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;-- Art&lt;/p&gt;</description></item><item><title>Default Number of DropDownRows </title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Thu, 07 Mar 2013 15:11:39 GMT</pubDate><dc:creator>tjp1</dc:creator><category>WebCombo</category><description>&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;I currently have a few hundred webcombo boxes in my application. &amp;nbsp;I recently stumbled upon the "DropDownRows" setting which allows you to set the number of initial records loaded by WebCombo. &amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Is there a way to globally set this value across all my webcombo boxes? &amp;nbsp;Or must I resort to manually changing the value in every WebCombo?&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Webcombo clientside Row collection manipulation</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Wed, 06 Mar 2013 14:17:28 GMT</pubDate><dc:creator>sinan.biondic@gmail.com</dc:creator><category>WebCombo</category><category>SetSelectedIndex</category><category>clientside</category><category>row</category><category>slient-side</category><category>collection</category><category>manipulation</category><category>selectedindex</category><category>getrows</category><description>&lt;p&gt;I'm having problems retrieving row colection from webcombo. My combo is serverside binded, and in clientside pageload event I'm trying to get rows from combo. However i get nothing from method GetRows(). Applying filters is working fine but variable rows is null, and setselectedindex(1) does nothing.&lt;/p&gt;&lt;pre&gt;function setComboFilter(idMenu) {
    var combo = ISGetObject('cmbGodina');
    var rows = combo.getRows();
    combo.ClearAdditionalFilters();
    combo.SetAdditionalFilters("[IdRedaMenu] = " &amp;#43; idMenu);
    combo.SetSelectedRowByValue(String(idMenu));
    combo.SetSelectedIndex(1);
}&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebCombo ClientSide databind </title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Fri, 01 Mar 2013 04:47:44 GMT</pubDate><dc:creator>sinan.biondic@gmail.com</dc:creator><category>WebCombo</category><category>DataBind</category><category>client-side</category><description>&lt;p&gt;I have following code:&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;function success(msg) {
    var combo = ISGetObject('cmbGodina');
    var rows = combo.GetRows();
//    if(rows.length &amp;gt; 0){
//        for(var i = 0; i &amp;lt; rows.length; &amp;#43;&amp;#43;i){
//            rows.Remove(rows[i], true);
//        }
//    }&lt;/pre&gt;&lt;pre&gt;//    combo.UpdateUI();
    var dataTable = new ISDataTable();
    var idColumn = new ISDataColumn(dataTable);
    var naziv = new ISDataColumn(dataTable);
    var datumDo = new ISDataColumn(dataTable);
    var xsltFile = new ISDataColumn(dataTable);
    var procFile = new ISDataColumn(dataTable);
    dataTable.Name = dataTable.TableName = "Root";
    idColumn.Name = idColumn.ColumnName = "IdObrasca";
    naziv.Name = naziv.ColumnName = "Naziv";
    datumDo.Name = datumDo.ColumnName = "DatumDo";
    xsltFile.Name = xsltFile.ColumnName = "XsltFile";
    procFile.Name = procFile.ColumnName = "ProcFile";
    dataTable.Columns.Add(idColumn);
    dataTable.Columns.Add(naziv);
    dataTable.Columns.Add(datumDo);
    dataTable.Columns.Add(xsltFile);
    dataTable.Columns.Add(procFile);
    $(msg).find('Table').each(function (i, row) {
        $(row).find('Field').text();
        var dataRow = dataTable.NewRow();
        dataRow.Cells.GetNamedItem("IdObrasca").Value = $(row).find('IdObrasca').text();
        dataRow.Cells.GetNamedItem("Naziv").Value = $(row).find('Naziv').text();
        dataRow.Cells.GetNamedItem("DatumDo").Value = $(row).find('DatumDo').text();
        dataRow.Cells.GetNamedItem("XsltFile").Value = $(row).find('XsltFile').text();
        dataRow.Cells.GetNamedItem("ProcFile").Value = $(row).find('ProcFile').text();
        dataTable.Rows.Add(dataRow);
    });
    combo.SetDataSource(dataTable);    
    combo.DataBind();
    combo.Render();    
}&lt;/pre&gt;
&lt;p&gt; msg is xml returned by webmethod on serverside. Everything works well, but I can't clear webcombo data before i bind it to another source. the commented lines of code, when uncommented, produce error "Unable to get value of the property 'rowIndex': object is null or undefined"&lt;/p&gt;
&lt;p&gt;this is my combo:&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;&amp;lt;iswebcombo:WebCombo ID="cmbGodina" runat="server" AllowWildCardSearch="false" Width="200" 
                        Height="20" DataValueField="IdObrasca"
                        ViewStateStorage="None" BindingOperationMode="ClientBinding" DataTextField="Naziv"&amp;gt;
                        &amp;lt;LayoutSettings ComboMode="MultipleColumns" EnableAnimation="False" AlwaysShowAllRowsOnDropdown="true" 
                            EntryMode="AutoComplete" StatusBoxPosition="Top" StatusBoxVisible="false"&amp;gt;
                            &amp;lt;ClientSideEvents  OnAfterItemSelected="cmbGodina_OnAfterItemSelected" /&amp;gt;
                        &amp;lt;/LayoutSettings&amp;gt;
                        &amp;lt;Columns&amp;gt;
                            &amp;lt;iswebcombo:WebComboColumn Name="Naziv" HeaderText="&amp;lt;%$GetString:{%00_pub_Name%}%&amp;gt;" BaseFieldName="Naziv" Width="200" /&amp;gt;
                            &amp;lt;iswebcombo:WebComboColumn Name="DatumDo" Hidden="true" RenderOnHidden="true" BaseFieldName="DatumDo" /&amp;gt;
                            &amp;lt;iswebcombo:WebComboColumn Name="XsltFile" Hidden="true" RenderOnHidden="true" BaseFieldName="XsltFile" /&amp;gt;
                            &amp;lt;iswebcombo:WebComboColumn Name="ProcFile" Hidden="true" RenderOnHidden="true" BaseFieldName="ProcFile" /&amp;gt;
                        &amp;lt;/Columns&amp;gt;
                        &amp;lt;ClientBindingSettings DataSourceType="ClientDataSource" /&amp;gt;
                    &amp;lt;/iswebcombo:WebCombo&amp;gt;
&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p /&gt;
&lt;p /&gt;</description></item><item><title>Webcombo databind to WebMethod </title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Thu, 28 Feb 2013 08:43:15 GMT</pubDate><dc:creator>sinan.biondic@gmail.com</dc:creator><category>WebCombo</category><category>DataBind</category><category>webmethod</category><category>client-side</category><description>&lt;p&gt;I am trying to bind webcombo dynamically. In the page_load event on server side i don't have the information needed to load webcombo data, i have it on client-side. I saw that it was possible to bind combo to webmethod in webservice, but is it possible to bind it to webmethod on .aspx page on which the combo itself is contained.&lt;/p&gt;
&lt;p&gt;My problem is that i need to dynamically rebind webcombo on client depending on some input. So when users clicks on different menu options I have to load different data in combo. Is that even possible, and if yes, can someone please give me a working example. I am getting data from stored procedure in sql server. Is there a way, please help!&lt;/p&gt;</description></item><item><title>WebUI Studio 2012 R2 Release</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Fri, 11 Jan 2013 04:42:37 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebGrid</category><category>WebCombo</category><category>WebDesktop</category><category>Chart</category><category>ClientUI</category><category>Property Grid</category><category>Query Builder</category><category>Bread Crumb</category><description>&lt;p&gt;Dear valued customers,&lt;/p&gt;
&lt;p&gt;I'd like to announce the latest release of WebUI Studio 2012 R2, that is available now for download in &lt;a href="http://www.intersoftpt.com/WebUIStudio/Try" target="_blank"&gt;here&lt;/a&gt;  In this R2 release, we've developed dozens of new controls for both Silverlight and WPF, as well as ASP.NET.&lt;/p&gt;
&lt;p&gt;In Silverlight and WPF, we introduce our own new charting data visualization. UXchart is a collection of feature-packed advanced charting control that will transform your business presentation to a whole new level. &lt;/p&gt;
&lt;p&gt;Property Grid is ready to provide a lightweight and powerful object property editor that is designed for efficient data editing.&lt;/p&gt;
&lt;p&gt;QueryBuilder is also available to visually build complex filter definitions. It is simply an advanced data filtering control for Silverlight and WPF.&lt;/p&gt;
&lt;p&gt;Breadcrumb also completes the 2012 R2 with its Windows explorer style user interface. It is designed to combine the hybrid functionality of address bar and menu which allows users to perform navigation in a simple point-and-click manner.&lt;/p&gt;
&lt;p&gt;In ASP.NET, we come up with WebDesktop 4 that has been fully enhanced to support HTML5 and CSS3. WebDesktop also supports a new visual theme based on Windows modern UI design aesthetic. It transforms every WebDesktop user interface controls into clean and modern look and feel.&lt;/p&gt;
&lt;p&gt;To discover new controls and features that we’ve included in R2 release, you can visit What’s New in 2012 R2. &lt;/p&gt;
&lt;p&gt;Get your full license now in our &lt;a href="http://intersoftpt.com/store" target="_blank"&gt;online store&lt;/a&gt;. Feel free to contact me for best pricing or if you have any questions.&lt;/p&gt;
&lt;p&gt;Thank you and have a nice day.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Martin&lt;/p&gt;</description></item><item><title>Webcombo Conflicts With MS AJAX Extensions 1.0</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Tue, 04 Dec 2012 12:29:00 GMT</pubDate><dc:creator>tjp1</dc:creator><category>WebCombo</category><description>&lt;p&gt;Web Combo seems to have trouble with Microsoft ASP.Net 2.0 AJAX Extensions 1.0, &lt;span style="font-size: 10pt;"&gt;found&amp;nbsp;&lt;/span&gt;&lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=883" target="_blank" style="font-size: 10pt;"&gt;here&lt;/a&gt;&lt;span style="font-size: 10pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;If the extensions are installed I receive these errors (varies between pages):&lt;/p&gt;
&lt;p&gt;Error: Unable to get value of the property 'documentElement': object is null or undefined (In WebCombo.js.  It highlights this line: "v50372 =v2998.XmlDt.documentElement; ")&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;Error: Unable to get value of the property 'parentElement': object is null or undefined (Also in WebCombo.js.  This time it highlights: "var v1ce37 =this.FrameObj.parentElement;")&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Any ideas?  Is this a documented issue that I have been unable to find?  You should be able to reproduce easily.&lt;/p&gt;</description></item><item><title>October Special Double Promo</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Fri, 12 Oct 2012 02:27:53 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebCombo</category><category>ASP.NET</category><category>ClientUI</category><category>Promo</category><category>October</category><category>HTML5</category><description>Dear valued customers,
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;div&gt;Good day to all of you.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;In this opportunity, I’d like to announce our special double promo in this month. If you purchase any of WebUI Studio subscription license, you will be given a direct 20% discount. Then, you will have a privilege to enter our Wheel of Fortune page to claim your prize. For more information about this lucky promo, see the following link:&lt;/div&gt;&lt;div&gt;&lt;a href="http://intersoftpt.com/Corporate/News.aspx?page=News&amp;amp;EventId=211"&gt;http://intersoftpt.com/Corporate/News.aspx?page=News&amp;EventId=211&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The promo will be effective from 10th October 2012 until 10th November 2012. Don't miss out this special promo! Grab your WebUI Studio Subscription license today through our&amp;nbsp;&lt;a href="http://intersoftpt.com/store" target="_blank"&gt;online store&lt;/a&gt;.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Please contact me immediately at martin@intersoftpt.com to join this limited offer.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thank you and look forward to seeing you in our Wheel of Fortune promo.&lt;/div&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Cheers,&lt;/div&gt;
&lt;div&gt;Martin&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description></item><item><title>How Disable the Enter in the WebCombo Editing?</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Mon, 03 Sep 2012 12:28:05 GMT</pubDate><dc:creator>fabdellacorte</dc:creator><category>WebCombo</category><description>Hi to all,
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;I'm using the WebCombo version 6.0.7200.100. &lt;/div&gt;
&lt;div&gt;I have a cell of grid that contain a webcombo associated a list of products, it is configurated with EntryMode="AutoComplete" and  when writing the digits, start automatically the search of products and it is OK.&lt;/div&gt;
&lt;div&gt;Instead I should disable the event of key 'ENTER' while writing the digits of product because with configuration EntryMode="AutoComplete", the key ENTER if the response is not returned, it have a strange behaviour.&lt;/div&gt;
&lt;div&gt;How can do it?&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;thanks and regards&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Fabrizio&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description></item><item><title>programmatically control WebCombo from vba</title><link>http://www.intersoftpt.com/Community/Tags/WebCombo/</link><pubDate>Tue, 31 Jul 2012 22:55:17 GMT</pubDate><dc:creator>robertmooney01@gmail.com</dc:creator><category>WebCombo</category><description>&lt;p&gt;I use a web-based app that includes Intersoft WebCombo.  I have successfully automated various routine/repetitive tasks in IE by using Microsoft Internet Controls called from an Excel vba module.  Saves me time and assures quality.&lt;/p&gt;
&lt;p&gt;Up to now I have been interacting with standard IE controls - text boxes, buttons, etc.  But now I need to select an option from an Intersoft WebCombo.  Is there any documentation or examples that would show me how this is accomplished?&lt;/p&gt;</description></item></channel></rss>