Posts

I want to change reference of css in html files -

i want change reference of css file local server cdn , have got many pages ,rather changing them 1 one want change them ,i using visual studio 2010. if recall correctly there function in visual studio replace same code in entire project. try ctrl + shift + h.

javascript - CRM RibbonWorkbech - 3rd Party Librarys -

i have js function running on custom button visible on view not form. the function requires xrmservicetoolkit complete it's purpose, therefore on ribbon workbench on custom button added action call xrmservicetoolkit library, there needs function name. does know correct way working thanks my favorite "dummy" function purpose isnan <javascriptfunction functionname="isnan" library="$webresource:myjslib" />

c# - (Solved) DataGrid binding on a List in an Object -

i'm trying bind class schedulep on datagrid in wpf application. inside class there's class every day of week, inside list. have 7 columns, , i'm trying bind data of list inside these columns i tried setting {binding day[0].name} not display anything... displaying time string. any ideas? thanks in advance. //cs public class schedulep { public string time { get; set; } public list<_day> day = new list<_day>(); public class _day { public string name; public string subject; public bool lab; } } public main() { initializecomponent(); schedulep sch = new schedulep(); sch.day.add(new schedulep._day() { name = "asd", subject = "asd", lab = true }); sch.time = "ads"; list<schedulep> users = new list<schedulep>(); users.add(sch); programmgrid.itemssource = users; ...

dart - pub build fails due to urlencoded version numbers -

pub build throws following error resolving dependencies... error on line 1, column 1 of https://pub.dartlang.org/api/packages/source_maps/versions/0.10.0%2b2: invalid version constraint: not parse version it seems pub tries update https://pub.dartlang.org/packages/source_maps version 0.10.0+2. url contains version number , encoded + sign %2b . pub version 1.6.0, os fedora 19, ways overcome this? pub version 1.6.0 didn't yet support + in version constraints. need update newer version.

cordova - how to check file is exist or not in mobile sd card using javascript -

how check if excel file (.xlsx) exists on sd card on android using phonegap? if file exits, how import , export file contents through javascript? first add cordova file plugin project.then use following code : var reader = new filereader(); var filesource = <file path>; reader.onloadend = function(evt) { if(evt.target.result != null) { // if receive not null value file exists } else { // otherwise file doesn't exists } }; // going check if file exists reader.readasdataurl(filesource);

google maps - How to get nearby place in android when getting mylocation by lat and long -

i working on application mylocation latitude , longitude .now want users in 5 km within range .i using following code lat , long of user. if(gps.cangetlocation()){ getlatitude = gps.getlatitude(); getlongitude = gps.getlongitude(); latitude_mstring = string.valueof(getlatitude); longitude_mstring = string.valueof(getlongitude); log.d("value of lat , long", latitude_mstring+""+longitude_mstring); log.d("u r", "ur in register lati loni"); new thread(null,latlongthread,"").start(); } }else{ gps.showsettingsalert(); } marker = new markeroptions().position(new latlng(getlatitude, getlongitude)).title("me"); //marker.icon(bitmapdescriptorfactory.fromresource(r.drawable.)); cameraposition cameraposition = new cameraposition.builder().target(new latlng(getlatitude, getlongitude)) .zoom(12).build(); googlemap.animatecamera(cameraupdatefactory.newca...

.net - C# WCF service | Word document -

i have angularjs app consuming wcf rest services. i have method in service create word document. i try using microsoft.office.interop.word i found won't work because it's on server-side... do have idea how can create word document in wcf service ? one way install ms word on server (but it's not practice). another way use open xml: https://msdn.microsoft.com/en-us/library/office/bb448854.aspx https://msdn.microsoft.com/en-us/library/bb735940%28v=office.12%29.aspx