Comments for Maulik Soni https://codesnipets.wordpress.com Cloud Solutions Architect & Developer Wed, 07 May 2014 01:59:49 +0000 hourly 1 http://wordpress.com/ Comment on Creating and Deploying SQL CLR Database Objects by Gary Hunt https://codesnipets.wordpress.com/2013/04/10/creating-and-deploying-sql-clr-database-objects/#comment-266 Wed, 07 May 2014 01:59:49 +0000 http://codesnipets.wordpress.com/?p=382#comment-266 excellent complete example. Thank you.

]]>
Comment on Silverlight Toolkit Column Series – Display Label on bar (Column Labels) ( datapoint labels ) by Redone https://codesnipets.wordpress.com/2011/02/14/silverlight-toolkit-column-series-display-label-on-bar-column-labels-datapoint-labels/#comment-216 Mon, 17 Feb 2014 10:35:12 +0000 http://codesnipets.wordpress.com/?p=263#comment-216 Very good post. Can you provide the full project source code as download. Thanks

]]>
Comment on WPF or silverlight XAML element collision detection by manal https://codesnipets.wordpress.com/2012/02/25/wpf-or-silverlight-xaml-element-collision-detection/#comment-196 Fri, 30 Aug 2013 10:12:15 +0000 http://codesnipets.wordpress.com/?p=347#comment-196 i want to detect collisions of scaterviewitems at runtime. plz help

]]>
Comment on Silverlight Toolkit Column Series – Display Label on bar (Column Labels) ( datapoint labels ) by sonakshi https://codesnipets.wordpress.com/2011/02/14/silverlight-toolkit-column-series-display-label-on-bar-column-labels-datapoint-labels/#comment-195 Mon, 12 Aug 2013 11:35:15 +0000 http://codesnipets.wordpress.com/?p=263#comment-195 can you please tell me how i can add labels to pie charts

]]>
Comment on sharepoint 2010 The Web application at http://localhost could not be found by Tro https://codesnipets.wordpress.com/2011/04/05/sharepoint-2010-the-web-application-at-httplocalhost-could-not-be-found/#comment-193 Thu, 18 Jul 2013 14:01:44 +0000 http://codesnipets.wordpress.com/?p=297#comment-193 thanx! helps for me!

]]>
Comment on Wizard Control with Update Panel – Scroll page to top on next button by mauliksoni https://codesnipets.wordpress.com/2011/12/14/wizard-control-with-update-panel-scroll-page-to-top-on-next-button/#comment-168 Mon, 14 Jan 2013 21:26:19 +0000 http://codesnipets.wordpress.com/?p=325#comment-168 You can do this by checking weather asp.net validation error class exist on the page using JQuery.

Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);

function EndRequestHandler(sender, args) {
if (sender._postBackSettings.sourceElement.defaultValue != “”) {
if (sender._postBackSettings.sourceElement.defaultValue != undefined) {
if ($(‘.field-validation-error’).length > 0) {
//asp.net validation error occured so do not scroll
} else {
scrollTo(0, 0);
}
}
}
}

]]>
Comment on Silverlight 4 Pie Chart Customization – Palett color, Silce color change, Observable collection and 2 color pie chart by christopherp@cricket-21.com https://codesnipets.wordpress.com/2011/02/10/silverlight-4-pie-chart-customization-palett-color-silce-color-change-observable-collection-and-2-color-pie-chart/#comment-167 Wed, 12 Dec 2012 13:20:15 +0000 http://codesnipets.wordpress.com/?p=251#comment-167 how to 4 and 5 color to set pallete

]]>
Comment on Sharepoint 2010 – get user full name using web service by venu https://codesnipets.wordpress.com/2011/03/25/sharepoint-2010-get-user-full-name-using-web-service/#comment-166 Fri, 03 Aug 2012 12:08:19 +0000 http://codesnipets.wordpress.com/?p=285#comment-166 what is ‘SPUserGroup’ here.????? im breaking my head to create an object of UserGroup webservice, though i have added the web reference to my VS solution. I could nt get how to consume it in my Visual WebPart.

]]>
Comment on Access (Web Service Enhancements 3.0 ) secure web service using C# ASP.NET by ulty4life https://codesnipets.wordpress.com/2011/02/09/access-web-service-enhancements-3-0-secure-web-service-using-c-asp-net/#comment-165 Mon, 30 Jul 2012 19:28:57 +0000 http://codesnipets.wordpress.com/?p=243#comment-165 You should be able to generate this on the command line with the WseWsdl3.exe program, but using the command line option /type:webClient. The default type is soapClient, which has the restriction of only one parameter on a method. For the webClient type, WseWsdl3.exe depends on wsdl.exe.

In any case, thanks for the code snippet. It helped me figure out some service references that I otherwise would have been stuck on. I opted for manually changing the class name rather than deal with the wsdl.exe dependency issue.

]]>
Comment on Wizard Control with Update Panel – Scroll page to top on next button by Cindy Wilhelm https://codesnipets.wordpress.com/2011/12/14/wizard-control-with-update-panel-scroll-page-to-top-on-next-button/#comment-163 Thu, 24 May 2012 14:23:15 +0000 http://codesnipets.wordpress.com/?p=325#comment-163 This snipet works great, but I have validation included in each step and if there are validation errors I need the step to not scroll to the top until all validations are cleared. How can I have the best of both worlds?

]]>