<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>MetaBuilders WebControls</title><link>http://www.codeplex.com/metabuildersweb/Project/ProjectRss.aspx</link><description>MetaBuilders WebControls Server Control Library</description><item><title>New Post: How do save files using multi file upload</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=34501</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br&gt;
&lt;br&gt;
I&amp;nbsp;got it working up to the point you can add or remove the files. I would like to know how I can save the files shown in the listbox when upload button is clicked. I am working with vb.&lt;br&gt;
Thanks in advance.
&lt;/div&gt;</description><author>tjshin</author><pubDate>Thu, 28 Aug 2008 21:43:18 GMT</pubDate><guid isPermaLink="false">New Post: How do save files using multi file upload 20080828094318P</guid></item><item><title>New Post: Using Asp.Net 2 without Asp.Net 1.1 loaded</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=34167</link><description>&lt;div style="line-height: normal;"&gt;Worked it out - the Regsiter directive should just say '... Assembly=MetaBuilders.Webcontrols' and not specify the individual DLL as in his Asp.Net 1.1 controls.&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
Adrian
&lt;/div&gt;</description><author>adrianaitken</author><pubDate>Sun, 24 Aug 2008 14:59:34 GMT</pubDate><guid isPermaLink="false">New Post: Using Asp.Net 2 without Asp.Net 1.1 loaded 20080824025934P</guid></item><item><title>New Post: Using Asp.Net 2 without Asp.Net 1.1 loaded</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=34167</link><description>&lt;div style="line-height: normal;"&gt;Hi all, even using the samples in the Help file, if I have only Asp.Net 2 (+sp1) installed, I get the 'Could not load file or assembly 'Metabuilders.webcontrols.dialogwindow' or one of its dependancies' error. &lt;br&gt;
I was under the impression this is a Asp.Net 2 app now that I've just&amp;nbsp;downloaded. Do I also need Asp.Net 1.1 installed ?&lt;br&gt;
&lt;br&gt;
If someone could answer this I'd be grateful.&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
Adrian&lt;br&gt;
&lt;/div&gt;</description><author>adrianaitken</author><pubDate>Sun, 24 Aug 2008 13:22:35 GMT</pubDate><guid isPermaLink="false">New Post: Using Asp.Net 2 without Asp.Net 1.1 loaded 20080824012235P</guid></item><item><title>New Post: How To Use Control Inside DetailsView</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=33772</link><description>&lt;div style="line-height: normal;"&gt;Apparently, the comboBox (and maybe other controls of this collection) will not behave properly in a DetailsView in the following scenario. I'm no expert on this, so maybe else will see my mistake.&lt;br&gt;
&lt;br&gt;
You create a details view bound to a dataSource, enable editing, and convert one field into a template. Then you add a comboBox to the editItem template, and bind that comboBox to a different dataSource.&lt;br&gt;
&lt;br&gt;
Then, to bind the comboBox's text value to the current record, you add the following attribute to the asp control. This attribute can be copied from the default textBox that visual studio created when you converted the field into a template:&lt;br&gt;
&lt;br&gt;
&lt;blockquote&gt;&amp;nbsp;
Text='&amp;lt;%# Bind(&amp;quot;Region&amp;quot;) %&amp;gt;'&lt;br&gt;
&lt;/blockquote&gt;So the resulting script will look like:&lt;br&gt;
&lt;blockquote&gt;&amp;lt;mb:ComboBox ID=&amp;quot;ComboBox2&amp;quot; runat=&amp;quot;server&amp;quot; Text='&amp;lt;%# Bind(&amp;quot;Region&amp;quot;) %&amp;gt;' DataSourceID=&amp;quot;SqlDataSource1&amp;quot; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; DataTextField=&amp;quot;Region&amp;quot; DataValueField=&amp;quot;Region&amp;quot;&amp;gt;&lt;br&gt;
&amp;lt;/mb:ComboBox&amp;gt;&lt;br&gt;
&lt;/blockquote&gt;
&lt;br&gt;
When you run the page, and click &amp;quot;Edit&amp;quot;, you'll get an error something like &amp;quot;There is no source code available for the current location&amp;quot; in debug mode, or &amp;quot;Databinding methods such as Eval(), XPath(), and Bind() can only be used in the
context of a databound control.&amp;quot;&lt;br&gt;
&lt;br&gt;
The solution I suggest is the following:&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Remove &lt;/em&gt;the following line from the combobox:&lt;br&gt;
&lt;br&gt;
&lt;blockquote&gt;&amp;nbsp;Text='&amp;lt;%# Bind(&amp;quot;Region&amp;quot;) %&amp;gt;'&lt;br&gt;
&lt;/blockquote&gt;&lt;br&gt;
Next, add the following Prerender event to the DetailsView:&lt;br&gt;
&lt;br&gt;
&lt;blockquote&gt;protected void DetailsView1_PreRender(object sender, EventArgs e)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (DetailsView1.CurrentMode == DetailsViewMode.Edit)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ComboBox boxRegion = DetailsView1.FindControl(&amp;quot;ComboBox1&amp;quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; boxRegion.Text=&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // here's where you have to get the bound value of this field in the details view&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;/blockquote&gt;I'll leave it to someone else to fill in the missing bit of code above. &lt;br&gt;
&lt;br&gt;
The purpose is to use code to load the current value of the field into the comboBox when the user switches to edit mode.&lt;br&gt;
&lt;br&gt;
Three questions:&lt;br&gt;
&lt;ul&gt;
    &lt;li&gt;is it possible to use the comboBox as a databound control in a detailsView template field without any custom event code?&lt;/li&gt;
    &lt;li&gt;if not, what should the missing code above look like?&lt;/li&gt;
    &lt;li&gt;would it be possible, rather than writing to the PreRender event, to write a custom function to replace the following?&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;&amp;nbsp;Text='&amp;lt;%# Bind(&amp;quot;Region&amp;quot;) %&amp;gt;'&lt;/blockquote&gt;
&lt;/div&gt;</description><author>johnywhy</author><pubDate>Tue, 19 Aug 2008 00:19:16 GMT</pubDate><guid isPermaLink="false">New Post: How To Use Control Inside DetailsView 20080819121916A</guid></item><item><title>New Post: MetaBuilder Help file - No content ?</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=33440</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
I hope this is the right place that I can post this issue.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
I just downloaded the MetaBuilders WebControls to use Combo Box control.&amp;nbsp; When I open the help file&lt;br&gt;
&lt;br&gt;
MetaBuilders WebControls.chm&lt;br&gt;
&lt;br&gt;
, it only shows the left panel with index/contents/search tabs, but on the right panel, it only says&lt;br&gt;
&lt;br&gt;
&lt;h1 id=mainTitle&gt;Navigation to the webpage was canceled&lt;/h1&gt;
&lt;p&gt;Is the url to the help context gone wrong or is the server down?&amp;nbsp;&amp;nbsp; &lt;br&gt;
Pls help me!!&amp;nbsp; I really want to use that combo contols and don't know how to start without help context.&lt;br&gt;
&lt;br&gt;
Do anybody have any sample that I can use until the help gets fixed, pls?&lt;br&gt;
I am using ASP.Net with VS2008.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
A-Yeon&lt;/p&gt;
&lt;/div&gt;</description><author>aychung</author><pubDate>Wed, 13 Aug 2008 13:59:14 GMT</pubDate><guid isPermaLink="false">New Post: MetaBuilder Help file - No content ? 20080813015914P</guid></item><item><title>New Post: DialogWindow on Asp.Net 1.1</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=30518</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, does anyone have working code on how to call the DialogWindow from inside code. Basically my website has a autopostback on a listbox, takes the item, does 'stuff; to it and then needs an inputbox displayed.&lt;br&gt;
I have tried to write out javascript by looking at the source code for the online sample which shows a hyperlink version. However I get object not referenced and other errors. I can successfully get it running if I put a button on screen but that is not intuitive for endusers.&lt;/p&gt;
&lt;p&gt;Any help ?&lt;/p&gt;
&lt;/div&gt;</description><author>adrianaitken</author><pubDate>Mon, 30 Jun 2008 14:36:48 GMT</pubDate><guid isPermaLink="false">New Post: DialogWindow on Asp.Net 1.1 20080630023648P</guid></item><item><title>New Post: Trouble with TabContainer &amp; ComboBox</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=30424</link><description>&lt;div style="line-height: normal;"&gt;Hi! &lt;br&gt;
&lt;br&gt;
I need your help, I put a ComboBox in a TabContainer, but when I run the application, my ComboBox width is very small its the same as I put width with 1px value.&amp;nbsp;&lt;br&gt;
&lt;br&gt;
How I can fix the trouble? &lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>iperez3</author><pubDate>Fri, 27 Jun 2008 23:57:32 GMT</pubDate><guid isPermaLink="false">New Post: Trouble with TabContainer &amp; ComboBox 20080627115732P</guid></item><item><title>New Post: Weird Behaviour Of Combobox</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=30243</link><description>&lt;div style="line-height: normal;"&gt;Hi, I'm trying to use the webcontrol &amp;quot;combobox&amp;quot; in my project&amp;nbsp; but there are two problems for me : &lt;br&gt;
1) I don't want dropdownlist with autofit &lt;br&gt;
2) If I put two databound &amp;quot;combobox&amp;quot; one above in a tablecell and a dropdown in a below separate tablecell, the data are &amp;quot;broken&amp;quot; on mouse click in the first combobox&lt;br&gt;
&lt;br&gt;
If you know some properties or settings to change in my project&amp;nbsp; please email or answer me asap please.&lt;br&gt;
Thank you in advance, Leonardo &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br&gt;
&lt;/div&gt;</description><author>leon76</author><pubDate>Wed, 25 Jun 2008 08:49:32 GMT</pubDate><guid isPermaLink="false">New Post: Weird Behaviour Of Combobox 20080625084932A</guid></item><item><title>Commented Issue: JS error in SelectorField</title><link>http://www.codeplex.com/metabuildersweb/WorkItem/View.aspx?WorkItemId=9299</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve placed SelectorField into my GridView to have a RadioButton column there.&lt;br /&gt;&amp;#60;mb&amp;#58;SelectorField SelectionMode&amp;#61;&amp;#34;Single&amp;#34; AutoPostBack&amp;#61;&amp;#34;false&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;When my page loads IE reports a JS error&amp;#58;&lt;br /&gt;Line&amp;#58; 5&lt;br /&gt;Char&amp;#58; 19&lt;br /&gt;Error&amp;#58; &amp;#39;MetaBuilders_SelectorField_CheckAllBoxes&amp;#39; is undefined&lt;br /&gt;Code&amp;#58; 0&lt;br /&gt;URL&amp;#58; &amp;#40;mine&amp;#41;&lt;br /&gt;&lt;br /&gt;How to fix it &amp;#63;&lt;br /&gt;I looked into the JS file, it seems like this variable&amp;#47;array was not defined anywhere...&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;&lt;br /&gt;Slava&lt;br /&gt;Comments: ** Comment from web user: DarthRob ** &lt;p&gt;For me, this error occurs when the GridView that contains the SelectorField is not Visible.  In this case, MetaBuilders_SelectorField_CheckAllBoxes is undeclared.  To test for an undeclared JavaScript variable, you could use typeof&amp;#40;&amp;#41;.  In &amp;#34;SelectorFieldScript.js&amp;#34; change the first function so that it looks like this&amp;#58;&lt;/p&gt;&lt;p&gt;function MetaBuilders_SelectorField_Init&amp;#40;&amp;#41; &amp;#123;&lt;br /&gt;    if &amp;#40; typeof&amp;#40; document.getElementById &amp;#41; &amp;#61;&amp;#61; &amp;#34;undefined&amp;#34; &amp;#41; return&amp;#59;&lt;br /&gt;    window.MetaBuilders_SelectorField_Fields &amp;#61; new Object&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;    if &amp;#40;typeof&amp;#40;MetaBuilders_SelectorField_CheckAllBoxes&amp;#41; &amp;#33;&amp;#61; &amp;#34;undefined&amp;#34;&amp;#41; &amp;#123;&lt;br /&gt;        for&amp;#40; var i&amp;#61;0&amp;#59; i &amp;#60; MetaBuilders_SelectorField_CheckAllBoxes.length&amp;#59; i&amp;#43;&amp;#43; &amp;#41; &amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;    var info &amp;#61; MetaBuilders_SelectorField_CheckAllBoxes&amp;#91;i&amp;#93;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;    var checkAllBox &amp;#61; document.getElementById&amp;#40; info.ID &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;    checkAllBox.participants &amp;#61; new Array&amp;#40;&amp;#41;&amp;#59; &lt;br /&gt;&amp;#9;&amp;#9;    MetaBuilders_SelectorField_Fields&amp;#91; info.Field &amp;#93; &amp;#61; checkAllBox&amp;#59;&lt;br /&gt;    &amp;#9;&amp;#9;&lt;br /&gt;&amp;#9;&amp;#9;    for&amp;#40; var j&amp;#61;0&amp;#59; j &amp;#60; MetaBuilders_SelectorField_CheckBoxes.length&amp;#59; j&amp;#43;&amp;#43; &amp;#41; &amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;    var selectorInfo &amp;#61; MetaBuilders_SelectorField_CheckBoxes&amp;#91;j&amp;#93;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;    if &amp;#40; selectorInfo.Field &amp;#61;&amp;#61; info.Field &amp;#41; &amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;    checkAllBox.participants&amp;#91; checkAllBox.participants.length &amp;#93; &amp;#61; document.getElementById&amp;#40; selectorInfo.ID &amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;    &amp;#125;&lt;br /&gt;&amp;#9;&amp;#9;    &amp;#125;&lt;br /&gt;&amp;#9;    &amp;#125;&lt;br /&gt;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#125;&lt;/p&gt;</description><author>DarthRob</author><pubDate>Sun, 22 Jun 2008 20:45:36 GMT</pubDate><guid isPermaLink="false">Commented Issue: JS error in SelectorField 20080622084536P</guid></item><item><title>New Post: How to get value of radio button using GlobalRadioButton</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=29838</link><description>&lt;div style="line-height: normal;"&gt;My solution has been to add a hidden label control next to each radio button, bind the value to the label, and then access the related label text when a radio button is selected.&amp;nbsp; If there's a better solution, please feel free to chip in.&lt;br&gt;
&lt;/div&gt;</description><author>DistortionJunky</author><pubDate>Wed, 18 Jun 2008 02:56:16 GMT</pubDate><guid isPermaLink="false">New Post: How to get value of radio button using GlobalRadioButton 20080618025616A</guid></item><item><title>New Post: How to get value of radio button using GlobalRadioButton</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=29838</link><description>&lt;div style="line-height: normal;"&gt;I'm trying to use the GlobalRadioButton control within a repeater.&amp;nbsp; All seems to be working OK except there does not seem to be a way to access the value field of the radio button.&amp;nbsp; I can access a text field, but that's no good since I don't want to display the data I need to retrieve.&amp;nbsp; Any help would be appreciated.&lt;br&gt;
&lt;/div&gt;</description><author>DistortionJunky</author><pubDate>Wed, 18 Jun 2008 01:58:27 GMT</pubDate><guid isPermaLink="false">New Post: How to get value of radio button using GlobalRadioButton 20080618015827A</guid></item><item><title>NEW POST: ResizeMonitor  on first page load</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=29206</link><description>&lt;div style="line-height: normal;"&gt;Is there a way to have the ResizeMonitor component return the client screen dimensions on the initial page load, without the need for the user to resize the browser window? I guess I would need to raise the resize event, but I am pretty new to VB and don't know how to do that... Any help will be greatly appreciated!&lt;br&gt;
&lt;br&gt;
Thanks!&lt;br&gt;
&lt;/div&gt;</description><author>EduardoMArtins</author><pubDate>Fri, 06 Jun 2008 19:36:16 GMT</pubDate><guid isPermaLink="false">NEW POST: ResizeMonitor  on first page load 20080606073616P</guid></item><item><title>Patch Uploaded</title><link>http://www.codeplex.com/metabuildersweb/SourceControl/PatchList.aspx</link><description>
&lt;p&gt;&lt;a href='/site/users/view/ewsachse'&gt;ewsachse&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;This is a fix for 9182 - &amp;#39;undefined&amp;#39; is null or not an object&lt;br /&gt;&lt;br /&gt;The source of the erroris in the MetaBuilders_DialogWindow_DoDialogPostBack function in the DialogWindowBaseScript.js file. It was not checking if the result was undefined. See below.&lt;br /&gt;&lt;br /&gt;broken code&amp;#58;&lt;br /&gt;if &amp;#40; result &amp;#61;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;result &amp;#61; info.DefaultValue&amp;#59;&lt;br /&gt;break&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;fixed code&amp;#58;&lt;br /&gt;if &amp;#40; result &amp;#61;&amp;#61; null &amp;#124;&amp;#124; result &amp;#61;&amp;#61; undefined&amp;#41; &amp;#123;&lt;br /&gt;result &amp;#61; info.DefaultValue&amp;#59;&lt;br /&gt;break&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;</description><author>ewsachse</author><pubDate>Wed, 28 May 2008 19:10:30 GMT</pubDate><guid isPermaLink="false">Patch Uploaded 20080528071030P</guid></item><item><title>COMMENTED ISSUE: 'undefined' is null or not an object</title><link>http://www.codeplex.com/metabuildersweb/WorkItem/View.aspx?WorkItemId=9182</link><description>I got this error when testing the OpenDialogButton in IE7 when I try to close the dialog using the IE7 tab close button.&lt;br /&gt;The sample in http&amp;#58;&amp;#47;&amp;#47;www.metabuilders.com&amp;#47;Tools&amp;#47;DialogWindow.aspx also produces the same error in IE7, open a &amp;#34;poorly&amp;#34; designed dialog box, then close the tab&amp;#47;window via its close button.&lt;br /&gt;Comments: ** Comment from web user: ewsachse ** &lt;p&gt;I found the source of the error in the MetaBuilders_DialogWindow_DoDialogPostBack function in the DialogWindowBaseScript.js file.  It was not checking  if the result was undefined.  See below.  &lt;/p&gt;&lt;p&gt;broken code&amp;#58;&lt;br /&gt;if &amp;#40; result &amp;#61;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;&amp;#9;result &amp;#61; info.DefaultValue&amp;#59;&lt;br /&gt;&amp;#9;break&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;&lt;p&gt;fixed code&amp;#58;&lt;br /&gt;if &amp;#40; result &amp;#61;&amp;#61; null &amp;#124;&amp;#124; result &amp;#61;&amp;#61; undefined&amp;#41; &amp;#123;&lt;br /&gt;&amp;#9;result &amp;#61; info.DefaultValue&amp;#59;&lt;br /&gt;&amp;#9;break&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;&lt;p&gt;I also attached an updated DialogWindowBaseScript.js if you want to get the source and rebuild the project with this change.&lt;/p&gt;</description><author>ewsachse</author><pubDate>Wed, 28 May 2008 14:29:03 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: 'undefined' is null or not an object 20080528022903P</guid></item><item><title>NEW POST: Selectorfield allowselect cannot be false???</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=28070</link><description>&lt;div style="line-height: normal;"&gt;I'm am using Metbuilders Selectorfield within a gridview control and everything was working quite happily. As I am short of screen space I decided to hide the header of the gridview, this caused a script error 'Metbuilders_selectorfield_checkallboxes is undefined.&lt;br&gt;
&lt;br&gt;
I showed the header and all was well. I then decided to set allowselect all to false again producing exactly the same error. It obviously isn't happy when the Select all check box cannot be seen but I can't understand why.&lt;br&gt;
&lt;br&gt;
Has anyone else come across this? Is it a bug in the control? 
&lt;/div&gt;</description><author>bhastings316</author><pubDate>Tue, 20 May 2008 14:36:55 GMT</pubDate><guid isPermaLink="false">NEW POST: Selectorfield allowselect cannot be false??? 20080520023655P</guid></item><item><title>NEW POST: Please - can anyone share a SelectorField example?</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=27672</link><description>&lt;div style="line-height: normal;"&gt;I have the selectorField displaying correctly in a GridView - but I'm beating my head against the wall trying to figure out how to retrieve the selected checkboxes in my code-behind. Has anyone seen any documented examples of how to get this working? Can anyone please share a working example of this??&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Terry
&lt;/div&gt;</description><author>blankers</author><pubDate>Wed, 14 May 2008 02:54:16 GMT</pubDate><guid isPermaLink="false">NEW POST: Please - can anyone share a SelectorField example? 20080514025416A</guid></item><item><title>NEW POST: SelectorField control not available on ASPX page?</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=27505</link><description>&lt;div style="line-height: normal;"&gt;finally figured it out - SelectorField belongs at the column level, not within a TemplateField like most of the other MetaBuilder.WebControls...&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>blankers</author><pubDate>Wed, 14 May 2008 00:22:22 GMT</pubDate><guid isPermaLink="false">NEW POST: SelectorField control not available on ASPX page? 20080514122222A</guid></item><item><title>NEW POST: Tracker is 'null' or not an object</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=27557</link><description>&lt;div style="line-height: normal;"&gt; I am getting this JAVASCRIPT error&lt;br&gt;
Tracker is 'null' or not an object&lt;br&gt;
Can anybody help me what's the cause of this error&lt;br&gt;
Thanks&lt;br&gt;
Nomi
&lt;/div&gt;</description><author>nomi2005</author><pubDate>Mon, 12 May 2008 15:24:39 GMT</pubDate><guid isPermaLink="false">NEW POST: Tracker is 'null' or not an object 20080512032439P</guid></item><item><title>NEW POST: SelectorField control not available on ASPX page?</title><link>http://www.codeplex.com/metabuildersweb/Thread/View.aspx?ThreadId=27505</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br&gt;
I'm trying to use the SelectorField in an .aspx page and can't figure out how to implement it in my gridview's TemplateField column. After registering the assembly, I can see most of the MetaBuilders.WebControls in IntelliSense on the aspx page, but I can't see any of the controls that are inherited from System.Web.UI.WebControls.DataControlField (like SelectorField, BooleanField and LookupField). (I am able to instantiate a SelectorField within my code-behind file but I would really like to be able to use SelectorField in the .aspx page. )&lt;br&gt;
&lt;br&gt;
Here is my code:&lt;br&gt;
&lt;br&gt;
&lt;span style="font-family:courier new"&gt;(web.config)&lt;br&gt;
          &amp;lt;add tagPrefix=&amp;quot;mb&amp;quot; namespace=&amp;quot;MetaBuilders.WebControls&amp;quot; assembly=&amp;quot;MetaBuilders.WebControls&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;
(aspx page)&lt;br&gt;
    &amp;lt;asp:GridView ID=&amp;quot;GridView1&amp;quot; runat=&amp;quot;server&amp;quot; &amp;gt; &lt;br&gt;
        &amp;lt;Columns&amp;gt;&lt;br&gt;
            &amp;lt;asp:BoundField DataField=&amp;quot;BlacklistUrlId&amp;quot; HeaderText=&amp;quot;Id&amp;quot; SortExpression=&amp;quot;Id&amp;quot;&amp;gt;&amp;lt;/asp:BoundField&amp;gt;&lt;br&gt;
            &amp;lt;asp:TemplateField&amp;gt;&lt;br&gt;
                &amp;lt;ItemTemplate&amp;gt;&lt;br&gt;
                    &amp;lt;mb:SelectorField SelectionMode=&amp;quot;Multiple&amp;quot; AutoPostBack=&amp;quot;false&amp;quot; Visible=&amp;quot;true&amp;quot;/&amp;gt;&lt;br&gt;
                &amp;lt;/ItemTemplate&amp;gt;&lt;br&gt;
            &amp;lt;/asp:TemplateField&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;span style="font-family:segoe ui"&gt;Can anyone please tell me if there is something I'm missing about how to use this control? An example page would be extremely helpful!&lt;br&gt;
&lt;br&gt;
Many thanks,&lt;br&gt;
&lt;br&gt;
Terry&lt;br&gt;
&lt;/span&gt;&lt;/span&gt;
&lt;/div&gt;</description><author>blankers</author><pubDate>Sat, 10 May 2008 23:35:34 GMT</pubDate><guid isPermaLink="false">NEW POST: SelectorField control not available on ASPX page? 20080510113534P</guid></item><item><title>CREATED ISSUE: XHTML compliance - all attributes should be lower case</title><link>http://www.codeplex.com/metabuildersweb/WorkItem/View.aspx?WorkItemId=10115</link><description>According to http&amp;#58;&amp;#47;&amp;#47;www.w3.org&amp;#47;TR&amp;#47;xhtml1&amp;#47;&amp;#35;h-4.2 , all attributes should render lower case. But the RolloverImage control renders its onmouseover and onmouseout in title case. Example&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;a id&amp;#61;&amp;#34;header1_RollOverLink4&amp;#34; href&amp;#61;&amp;#34;Invest.aspx&amp;#34;&lt;br /&gt;                 OnMouseOver&amp;#61;&amp;#34;RollOverLink_swapImage&amp;#40;&amp;#39;header1_RollOverLink4_img&amp;#39;,&amp;#39;&amp;#39;,&amp;#39;&amp;#47;images&amp;#47;invest_r.png&amp;#39;,1&amp;#41;&amp;#59;&amp;#34;&lt;br /&gt;                 OnMouseOut&amp;#61;&amp;#34;RollOverLink_swapImgRestore&amp;#40;&amp;#41;&amp;#59;&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;It should be like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;a id&amp;#61;&amp;#34;header1_RollOverLink4&amp;#34; href&amp;#61;&amp;#34;Invest.aspx&amp;#34;&lt;br /&gt;                 onmouseover&amp;#61;&amp;#34;RollOverLink_swapImage&amp;#40;&amp;#39;header1_RollOverLink4_img&amp;#39;,&amp;#39;&amp;#39;,&amp;#39;&amp;#47;images&amp;#47;invest_r.png&amp;#39;,1&amp;#41;&amp;#59;&amp;#34;&lt;br /&gt;                 onmouseout&amp;#61;&amp;#34;RollOverLink_swapImgRestore&amp;#40;&amp;#41;&amp;#59;&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;Easy fix, right&amp;#63;&lt;br /&gt;</description><author>robh</author><pubDate>Sat, 03 May 2008 19:41:33 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: XHTML compliance - all attributes should be lower case 20080503074133P</guid></item></channel></rss>