toolkit

Custom Ajax Extender - Collection Property

I have written a custom ajax extender for use with ASP panels and JQuery dialogs. The problem I face is that I need multiple buttons to trigger the dialog, therefore attributes aren't really a viable option. I am hoping to do something like the following: <ex:DialogExtender TargetID="pnlSomePanel"> <triggers> <button ID="btnOne...

Change Silverlight Chart Legend Item Layout

I am working on customizing the layout of a Silverlight Toolkit Chart. I have two requirements: 1) Move the Legend area to the bottom of the chart (solved). 2) change the layout of elements within the legend to be displayed next to each other, ie. {legend 1},{legend 2},{legend 3}, rather than the default column format. 1) was easy to...

Facebook .net toolkit v3 getAlbums gives error

Having a problem when using the getAlbums method... I have passed in the correct long uid to the method but it gave me an error: Input string incorrect exception stuff. I sure that I passed in the correct facebook user id. Does anyone has the same issue? ...

string translation as free saas?

While Google translate toolkit offers a great means to let the community translate content on localised sites, I want to find a good way of handling the translation of often used strings and sharing those, making available through an api for other sites to use. A typical example are formlabels and buttons, often not in the content-transl...

WPF Toolkit: how to scroll datagrid to show selected item from code behind?

I tried following, all of following fails on function ScrollIntoView and gives NullReferenceException. // doesnt work grid.SelectedItem = sItem; grid.ScrollIntoView(sItem); // doesnt work grid.SelectedItem = sItem; grid.Focus(); grid.CurrentColumn = grid.Columns[0]; grid.UpdateLayout(); grid.ScrollIntoView(sItem,grid.Columns[0]); // d...

BusyIndicator.Message Binding to Collection of strings

I'm trying to binding a SL BusyIndicator to a collection of busy messages. When the collection has items, the indicator will display the messages. When the collection of messages is empty the indicator will hide. First off the indicator is not displaying my messages, all I see is a blank indicator box, with an indeterminate progress bar...

silverlight toolkit themes at runtime

I'm dynamically adding buttons to a grid that is already surrounded by the expression dark theme element. When running the application, the buttons created do not inherit their parent's grids theme. Any ideas? ...

Add basicHttpBinding to BizTalk ESB Toolkit WCF Service /ESB.ItineraryServices.WCF/ProcessItinerary.svc

Hello Just getting started with the ESB Toolkit 2.0 on BizTalk Server 2009. I can get a .NET client to talk to the ESB Toolkit WCF Service /ESB.ItineraryServices.WCF/ProcessItinerary.svc with no problem at all, however, we use a client technology that cannot process wsHttpBindings at all, it can only see the basicHttpBinding. Does anyo...

web toolkit that does all of this?

Is there an ajax toolkit that does: A star rating system captcha file upload auto-complete I am planning a new social website. ...

C++ visualization toolkit recommendation for X11/OpenGL

hi I am looking for visualization framework, preferably that has simple interface for simple things, with C++ implementation. my requirements are very simple - plotting matrixes (as a debugging tool), so i do not really care about performance or appearance, and 2D is enough for me. i had used VTK under octave, and it worked pretty well...

WPF Toolkit DataGrid: how to get ColumnHeader width to be the same as GridColumn width

For my WPF Toolkit DataGrid I use the following custom column header style: <Style x:Name="ColumnStyle" x:Key="ColumnHeaderStyle" TargetType="my:DataGridColumnHeader"> <Setter Property="ContentTemplate"> <Setter.Value> <DataTemplate> <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch"...

Need a secure Cross platform gui language

It may sound like a lot, but I am looking for a language that is cross platform that I can compile into a single stand alone exe. The source code needs to be secure (Not just hidden) and have some sort of gui toolkit. Do any exist? ...

Ajax Toolkit in Control Jquery

<script language="javascript" type="text/javascript"> $(document).ready(function() { $("#TextBox1").click(function() { alert("bla bla bla bla bla") }); }); </script> <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> </asp:ToolkitScriptManager> <asp:TabContainer runat=...

Dojo Tookit: FilteringSelect problem in IE

Hi, does somebody know something about problems with the filteringSelect in IE browsers? I just get an yellow exclamation mark and two JS errors in IE developer tool: dijit.form.ComboBox: TypeError: 'undefined' is null or no object dijit.form.FilteringSelect: TypeError: 'undefined' is null or no object I use dojo version...

Ajax modal popup with repeater control

hi I created a repeater it has a column called comment on click of a comment icon, a AJAX Modal Popup comes out were user can enter the comments, now the problem is AJAX Modalpopup comes out and disappear immediately , i dont know wats wrong in that when i make targetcontrolid attribute of AJAX modal popup pointing to a button it wor...

How can i get the Dragged Element in a Silverlight App

Hi, i have two ListBoxes (in a Silverlight 3 Application), each wrapped with a ListBoxDragDropTarget. Now i fill the SourceBox with some custom Objects (Person). Then i wire up the DragOver Event of the Destination DragDtopTarget. This all workd fine and i can drag & drop the elements from the first list to the second. Now my issue: Ho...

How can set the y and x axis of a wpf toolkit chart? something like y:kg, x:years

Hi I would like to know how can i do to set the label for X axis and y axis? Righ now, i have a chart with the values, and I format the tooltip, but i can't realize how to set the label for X an Y axis. Another thing is, Is posible to execute zooming in a chart series, I mean, if i have the x axis in years, i would like to change it to...

GUI framework Java

Hello, I am looking for some framework or toolkit (style drag and drop) for creating gui in Java. I need to do quite complex application with dockings, toolbars, tables etc. Which one would be best? ...

Silverlight Toolkit ListBoxDragTarget Only One Way

I've got a Silverlight 3 app that has two ListBoxes that I need to be able to drag items between. I've got the toolkit control working so that I can drag from ListBox lbA to ListBox lbB but i then can't drag the item from lbB back to lbA. <toolkit:ListBoxDragDropTarget mswindows:DragDrop.AllowDrop="True"> <ListBox x:Name="lbA" Style...

WPF Toolkit Pie Chart Style Colors

Hello, i`d like to set colors in codebehind for every Pie Slice in my PieChart. Anyone knows how to do this? Now it gets the colors from the styles xaml, but i need to assign the colors for each value (pie slice) by myself from codebehind. ...