i seem have strange issue caused either visual studio or mercurial. localised single project, i'm guessing in project configuration causing issue. at difficult specify point, when perform action in visual studio, update every line ending in given file, means when @ file in sourcetree, every line has changed. i can replicate using nuget add package dependency; packages.config entirely replaced. if commit changes, including line endings, later same issue occur. workaround have shelve changes , reapply them, whereupon lines written correctly. i'm not sure application blame here. did make mistake of allowing sourcetree change mercurial configuration, issue have fixed, i'm not sure if has persisted. i thought might issue mercurial.ini files or hgrcs don't seem contain untoward. here's mercurial.ini [ui] username = .... [auth] bb.prefix = https://bitbucket.org/ bb.username = .... bb.password = .... [extensions] mq = rebase = [web] allow_push = * push_s...
i trying retrieve data form created using widget cactiveform. however, when click on submit button, no data written targeted url. how obtain submitted form data? <p>please list ages of members of household:</p> <div class="form offset3"> <?php $form = $this->beginwidget('cactiveform', array( 'id' => 'survey', 'enableclientvalidation' => true, 'enableajaxvalidation' => true, 'action'=>yii::app()->createurl('//survey_resp'), 'clientoptions' => array( 'validateonsubmit' => true, ), 'htmloptions' => array( 'class' => 'form-horizontal', ), )); ?> <div class="row"> <?php echo $form->labelex($model, 'age_1'); ?> <?php echo $form->textfield($model, 'age_1'); ?> ...
Comments
Post a Comment