i'm porting project scala 2.9 2.10, therefore have use slick instead of scalaquery. i'm using slick 2.1.0 since supports ms access. according this tutorial , upgrade guide changed robs object class , added val robs : why error message wrong top statement declaration , how rid of it? edit: i'm new scala... according this question seems can't put val outside of methods or classes, right? code above directly in packge. right approach slick then? should move code in class or trait? according this changed val robs = tablequery[robs] to object robs extends tablequery(new robs(_)) {} . no warnings or errors anymore. :)
can tell me whether it's possible set footer each columngroups of radgridview in wpf using code behind ? i able on normal gridviewdatacolumn setting footer attribute true how columngroups? possible? no, don't think possible. telerik documentation has no such feature. you can set xaml code behind normal columns, not column groups... by default though column footers hidden, in order make them visible have set showcolumnfooters property true, per example: <telerikgrid:radgridview x:name="radgridview" showcolumnfooters="true"> ... </telerik:grid:radgridview>
so trying have eccomerce site handle both paypal , stripe payments. however, not sure how done. this have. class billingprovider extends serviceprovider { /** * bootstrap application services. * * @return void */ public function boot() { // } /** * register application services. * * @return void */ public function register() { $this->app->bind('app\contracts\billinginterface','app\services\billing\paypalbilling'); } } this works fine if need paypal. however, need both paypal , stripe. any idea how can go implementing this? when typehint can either paypal or stripe. public function stripe(request $request, billinginterface $bill){// handle stripe payment.} public function paypal(request $request, billinginterface $bill){// handle paypal payment.} imho, there many ways it. first of all, take contextual binding of service ...
Comments
Post a Comment